CSS で @import を使わない
#技術メモ
CSSは@importというコマンドで他のCSSファイルを読み込むことが出来る
@import - CSS: カスケーディングスタイルシート | MDN
しかし以下の問題がある
読み込みを遅くする
【Sassで解決】CSSの@importはどれだけ悪影響なのか自分で試してみる | DevelopersIO
コードの頭に書かなければならない
CSS Cascading and Inheritance Level 4
Any @import rules must precede all other at-rules and style rules in a style sheet (besides @charset, which must be the first thing in the style sheet if it exists), or else the @import rule is invalid.